# Get Metadata for Language Interface File

Use this endpoint to retrieve metadata for a given language interface file and release.

Endpoint: GET /Metadata/Interface/{os}/{language}/{architecture}/{release}/{filename}

## Path parameters:

  - `architecture` (string, required)
    Describes the target architecture (ie, 'bitness'). Used for object binaries and language interface binaries on certain OS platforms.

  - `filename` (string, required)
    Name of File.

  - `language` (string, required)
    Describes the language interface.
- `NET` - .NET
- `C` - C/C++
- `JAVA` - Java
- `PERL` - Perl
- `PHP` - PHP (legacy, prior to v7)
- `PHP7` - PHP v7
- `PYTHON` - Python
- `RUBY` - Ruby
- `PLSQL` - Oracle PL/SQL
- `MSSQL` - SQL Server T-SQL

  - `os` (string, required)
    Describes the target OS. Used for object binaries and language interface binaries.
- `AIX` - AIX PowerPC
- `ANY` - Any OS
- `HPUX_IT` - HP-UX ia64
- `HPUX_PA` - HP-UX RISC
- `LINUX` - Linux Redhat
- `SOLARIS` - Solaris Sparc
- `WINDOWS` - Windows
- `ZLINUX` - IBM zLinux

  - `release` (string, required)
    Specific Release. This can be specified in several ways.
- `YYYY.MM` OR `YYYY-MM`  - (year, month)
- `YYYY.QQ` - (year, quarter)
- `[metaReleaseName]` - Release Name, for example: `latest`

## Query parameters:

  - `id` (any, required)
    The [License Key](https://docs.melissa.com/melissa/license/license-information.html) issued by Melissa.

## Header parameters:

  - `Accept` (string, required)
    Format of the response.

  - `Content-Type` (string, required)
    Format of the request.

## Response 200:

  - `200` (unknown)
    Successful response.

## Response 200 fields (application/json):

  - `FileName` (string)

  - `Release` (string)

  - `FileSize` (string)

  - `Language` (string)

  - `Architecture` (string)

  - `MD5` (string)

  - `SHA1` (string)

  - `SHA256` (string)

## Response 400:

  - `400` (unknown)
    Bad Request

## Response 400 fields (application/json):

  - `type` (string)
    The type of error that occurred.

  - `title` (string)
    A short summary of the error.

  - `status` (integer)
    The HTTP status code for the error.

  - `errors` (object)

  - `errors.$.<PropertyName>` (array)
    A detailed message about the error.

  - `traceId` (string)
    A unique identifier for the request, useful for debugging.

