{"activeVersionTag":"latest","latestAvailableVersionTag":"latest","collection":{"info":{"_postman_id":"45d06f3e-9abf-469b-a4f0-19350c820f0e","name":"GLEIF API","description":"This **quick-start guide** presents:\n\n- an overview of the GLEIF API v1.0 for developers and others, with\n    \n- examples of the most common use cases.\n    \n\nTo see a **live demonstration** of potential applications of this API, please go to the following link:\n\n[https://api.gleif.org/demo](https://api.gleif.org/demo)\n\nPotential applications include (for example):\n\n- Search for LEIs with names matching, or similar to, a list of names of known legal entities\n    \n- Find LEIs by BIC Code or ISIN Code\n    \n- Find LEI records with at least 2 direct and ultimate children (search within parent entities)\n    \n\nThe **full endpoint listing** is found below this guide.\n\n- To skip to a specific endpoint, click on a link in the menu bar to the left.\n    \n- The endpoints are grouped first according to the resource path (API URL) section, and then by the content of their responses.\n    \n- Each endpoint description below includes a listing of parameters that can be used to build requests, and an example value for each parameter.\n    \n- Pairs of request-response examples are given for each endpoint. You can select from the available examples using the dropdowns to the right.\n    \n\n# Quick-Start Guide\n\n## About the GLEIF API\n\nThe GLEIF API gives developers access to full LEI Data search engine functionality, including filters, full-text and single-field searches of Level 1 (LEI Record) Data, retrieval of LEI Records (including links to their Level 2 data, where available), based on a search of their associated Level 2 (relationship) data, and \"fuzzy\" matching of important data fields such as names and addresses.\n\nThe GLEIF API is based on the data found in the GLEIF Golden Copy. For more information please see:\n\n[https://www.gleif.org/en/lei-data/gleif-golden-copy#](https://www.gleif.org/en/lei-data/gleif-golden-copy#)\n\n**Important Note:**\n\nThe API responses included in this API documentation are provided as examples. Please note that LEI data is maintained by the LEI Issuing Organization/LOUs, and GLEIF cannot guarantee the accuracy or up-to-date status of the provided API responses.\n\n## Request Format\n\nRequests are HTTP REST calls, following the [JSON API specification](http://jsonapi.org/format/). Detailed example requests can be found in the quick-start guide and in the endpoint listing. Example requests in the quick-start guide can be sent by opening the links in a web browser.\n\n## Response Format\n\nThe GLEIF API returns LEI Records and Level 2 Data (Relationship Records and Reporting Exceptions). Level 2 Data is available via links found in the Level 1 (LEI Record) responses. Other associated data, such as standard codes, and LEI Issuer information, is also available.\n\nThese data are contained in JSON-formatted responses according to the [JSON API specification](http://jsonapi.org/format/).\n\n- JSON API responses represent resources in a REST-ful way, so they include URLs to related resources.\n    \n- Where a response contains more than 15 results, pagination information and `first`/`last` page links are included.\n    \n- LEI Data is presented in a simplified JSON format based on the CDF formats but using more intuitive names for some fields.\n    \n\n## Response Pagination\n\nSearch results in the API response can be paginated using the `page[number]` and `page[size]` parameters, for example:\n\n[https://api.gleif.org/api/v1/lei-records?filter[fulltext]=bank&amp;page[number]=2&amp;page[size]=15](https://api.gleif.org/api/v1/lei-records?filter%5Bfulltext%5D=bank&page%5Bnumber%5D=2&page%5Bsize%5D=15)\n\nLinks to the first, next, and last pages in a result set are included in the `meta` object within the response, where applicable.\n\n## Detailed Documentation Per API Resource and LEI Data Field\n\nYou can retrieve technical details of resources and LEI Data fields provided by the API from the following `fields` endpoint:\n\n[https://api.gleif.org/api/v1/fields](https://api.gleif.org/api/v1/fields)\n\nFor each data field, the `fields` endpoint returns the following information:\n\n- `type`: always has the value `fields` for this endpoint.\n    \n- `id`: a unique ID for the field, based on the CDF format for an LEI, Relationship, or Reporting Exception record.\n    \n- `key`: a unique key based on the ID of the field.\n    \n- `field`: the ID for the field in the full API response (similar to JSON structures).\n    \n- `label`: a human-readable display label for the field, for use in documentation, search results, graphical user interfaces, etc.\n    \n- `data_type`: the type of data returned by requesting this field, one of:\n    \n    - `RESOURCE`: the field represents a unique resource available to this API.\n        \n    - `STRING`: the field is a string.\n        \n    - `ENUM`: the field is a string, whose value will be one of the allowed value list (enumeration) for the field.\n        \n    - `DATE`: a date/time value in ISO 8601 format.\n        \n- `enum`: specifies the allowed value list (enumeration) for the field.\n    \n- `resource`: specifies the API resource endpoint part for the field.\n    \n- `sortable`: the field can be used to sort search results (`true`/`false`).\n    \n- `operators`: lists operators for use in a search interface.\n    \n- `contexts`: lists suggested \"contexts\" combining two or more fields in a search interface.\n    \n- `xpath`: the XPATH of this data field in the CDF (Common Data File) format XML Schema Definition (XSD). The XPATH can be used to look up specific CDF data elements, their content definitions (what data may appear in each element), and their cardinalities (how many times an element must or may appear in an LEI Data Record).\n    \n\nAn FAQ document with an introduction to the CDF formats and some technical details is available at:\n\n[https://www.gleif.org/en/about-lei/common-data-file-format](https://www.gleif.org/en/about-lei/common-data-file-format) (scroll down to \"Relevant Files for Download\")\n\nFor the fundamental data definitions, please see the LEI-CDF specifications/XML schemas:\n\n[https://www.gleif.org/en/about-lei/common-data-file-format/lei-cdf-format/lei-cdf-format-version-2-1](https://www.gleif.org/en/about-lei/common-data-file-format/lei-cdf-format/lei-cdf-format-version-2-1) (scroll down to \"Relevant Files for Download\")\n\n# Use Cases\n\nThe following Use Cases present example requests for some of the most common business needs of LEI Data Users.\n\n## Level 1 (LEI and Legal Entity) Data\n\nLevel 1 Data describes the LEI registration and the Legal Entity identified by the LEI.\n\n### Finding Legal Entities By Name\n\nIf you wish to find LEI records for known Legal Entities, and part or all of their name is known precisely, it can be helpful to start searching with a filter directly on the Legal Name field, for example:\n\n[https://api.gleif.org/api/v1/lei-records?filter[entity.legalName]=citibank&amp;page[number]=1&amp;page[size]=5](https://api.gleif.org/api/v1/lei-records?filter%5Bentity.legalName%5D=citibank&page%5Bnumber%5D=1&page%5Bsize%5D=5)\n\nIf the desired Legal Entity's name is not known precisely, it could be difficult to find exact matches only by filtering.\n\nYou can also find Legal Entities with potentially similar names using the `fuzzycompletions` endpoint. This type of search can provide a convenient starting point for obtaining LEIs.\n\n_Warning:_ Please see the disclaimer below.\n\n- Use the `q` parameter to give a search term, and get back LEI Records with statistically similar data, for example:\n    \n\n[https://api.gleif.org/api/v1/fuzzycompletions?field=fulltext&amp;q=factbook](https://api.gleif.org/api/v1/fuzzycompletions?field=fulltext&q=factbook)\n\n_Note:_ the result of the above request is the \"matched\" data, not the full record. The LEI Record context can be found by following the `related` link in this case.\n\n- Set the `field` parameter to search different LEI Data fields.\n    \n\n_Note:_ This will sometimes produce very different results, depending on the statistical frequency of those terms in legal entity data.\n\nFor example, compare a search for `hacker`, first in the legal name, and then including address fields (`fulltext`):\n\n[https://api.gleif.org/api/v1/fuzzycompletions?field=entity.legalName&amp;q=hacker](https://api.gleif.org/api/v1/fuzzycompletions?field=entity.legalName&q=hacker)\n\n(finds mainly Legal Entities with `hacker` or similar in their names)\n\n[https://api.gleif.org/api/v1/fuzzycompletions?field=fulltext&amp;q=hacker](https://api.gleif.org/api/v1/fuzzycompletions?field=fulltext&q=hacker)\n\n(finds many Legal Entities with `hacker` or similar in their addresses, even though names are also included)\n\nThe following parameters can be used:\n\n| Parameter Value | Name | Description |\n| --- | --- | --- |\n| 'entity.legalName' | Legal Entity's (official, registered) Legal Name | Search only in the primary, official/registered legal name of the Legel Entity itself |\n| 'fulltext' | Full Text of LEI Record | Search in all fields of the Legal Entity's LEI Record |\n| 'owns' | Who owns...? | Search in LEI Records of \"child\" LEI Records |\n| 'ownedBy' | Who is owned by...? | Search in LEI Records of \"parent\" LEI Records |\n\n### Finding LEI Records by LEI\n\nTo perfom a simple lookup, getting LEI Records using their LEIs, provide a comma-separated list of LEI Codes in the `filter[lei]` parameter to the `leirecords` endpoint, for example:\n\n[https://api.gleif.org/api/v1/lei-records?filter[lei]=261700K5E45DJCF5Z735,4469000001AVO26P9X86,5493001KJTIIGC8Y1R12](https://api.gleif.org/api/v1/lei-records?filter%5Blei%5D=261700K5E45DJCF5Z735,4469000001AVO26P9X86,5493001KJTIIGC8Y1R12)\n\n### Finding LEI Records by BIC\n\nUse the filter function as described above, but with the `bic` filter only, for example:\n\n[https://api.gleif.org/api/v1/lei-records?filter[bic]=ALETITMMXXX](https://api.gleif.org/api/v1/lei-records?filter%5Bbic%5D=ALETITMMXXX)\n\n## Finding LEI Records by ISIN\n\nUse the filter function as described above, but with the `isin` filter only, for example:\n\n[https://api.gleif.org/api/v1/lei-records?filter[isin]=DE000ST8MPP0](https://api.gleif.org/api/v1/lei-records?filter%5Bisin%5D=DE000ST8MPP0)\n\n### Finding all ISINs associated with an LEI Record\n\nRequest the related `isins` of a known LEI Record. The results will be all ISIN-LEI mappings currently reported for the requested LEI Record, where these have been provided according to the mapping process established by Association of National Numbering Agencies (ANNA).\n\n_Note:_ This will sometimes produce a large number of results which can be accessed using the pagination features described above.\n\n[https://api.gleif.org/api/v1/lei-records/529900W18LQJJN6SJ336/isins](https://api.gleif.org/api/v1/lei-records/529900W18LQJJN6SJ336/isins)\n\n## Level 2 (relationship) Data\n\nLevel 2 Data describes relationships between Legal Entities, where these have been reported by the Legal Entities themselves.\n\n### Display Parents of an LEI\n\nA search for the parents of Legal Entities can be formulated as the question \"who owns...?\"\n\nApply the `owns` filter to modify an LEI search to return parents of the LEI Record identified, if these exist, for example:\n\n[https://api.gleif.org/api/v1/lei-records?filter[owns]=315700WQBDF1ZVVE0T64](https://api.gleif.org/api/v1/lei-records?filter%5Bowns%5D=315700WQBDF1ZVVE0T64)\n\n### Display Children of an LEI\n\nA search for the parents of Legal Entities can be formulated as the question \"who is owned by...?\"\n\nApply the `ownedBy` filter to modify an LEI search to return parents of the LEI Record identified, if these exist, for example:\n\n[https://api.gleif.org/api/v1/lei-records?filter[ownedBy]=529900IYQRX2JSSIZA36](https://api.gleif.org/api/v1/lei-records?filter%5BownedBy%5D=529900IYQRX2JSSIZA36)\n\n## Query Syntax\n\nThe following use cases reflect typical features of a search engine's interface. These are followed by a listing of filter operators that can be used to build further queries.\n\n- To demonstrate each use case simply, the following example requests are configured to return one result at a time.\n    \n- The full number of \"hits\" is always available in the `pagination` object in the API response.\n    \n- To obtain the next result, increment the `page[number]` parameter, or use the `next` link in the response.\n    \n\n### Filter by Country, Legal Entity Type (General Category), or LEI Registration Status\n\n- Retrieve all Legal Entities with an official, registered (legal) address in Germany:\n    \n\n[https://api.gleif.org/api/v1/lei-records?filter[entity.legalAddress.country]=DE&amp;page[number]=1&amp;page[size]=1](https://api.gleif.org/api/v1/lei-records?filter%5Bentity.legalAddress.country%5D=DE&page%5Bnumber%5D=1&page%5Bsize%5D=1)\n\n- Retrieve all Legal Entities marked as a `FUND`:\n    \n\n[https://api.gleif.org/api/v1/lei-records?filter[entity.category]=FUND&amp;page[number]=1&amp;page[size]=1](https://api.gleif.org/api/v1/lei-records?filter%5Bentity.category%5D=FUND&page%5Bnumber%5D=1&page%5Bsize%5D=1)\n\n- Retrieve all Legal Entities whose LEI registration has `LAPSED`:\n    \n\n[https://api.gleif.org/api/v1/lei-records?filter[registration.status]=LAPSED&amp;page[number]=1&amp;page[size]=1](https://api.gleif.org/api/v1/lei-records?filter%5Bregistration.status%5D=LAPSED&page%5Bnumber%5D=1&page%5Bsize%5D=1)\n\n- Retrieve all Legal Entities that fill all of the above criteria:\n    \n\n[https://api.gleif.org/api/v1/lei-records?filter[entity.legalAddress.country]=DE&amp;filter[entity.category]=FUND&amp;filter[registration.status]=LAPSED&amp;page[number]=1&amp;page[size]=1](https://api.gleif.org/api/v1/lei-records?filter%5Bentity.legalAddress.country%5D=DE&filter%5Bentity.category%5D=FUND&filter%5Bregistration.status%5D=LAPSED&page%5Bnumber%5D=1&page%5Bsize%5D=1)\n\n### Search Operators\n\nThe following operators can be used together with the `filter` parameter to build more specific queries.\n\n| Syntax Description | Operator ID in `fields` Endpoint | Syntax | Example |\n| --- | --- | --- | --- |\n| Results must contain \"abc\" in field `x` | MATCH | filter\\[x\\]=abc | [https://api.gleif.org/api/v1/lei-records?filter[entity.legalAddress.country]=GB](https://api.gleif.org/api/v1/lei-records?filter%5Bentity.legalAddress.country%5D=GB) |\n| Results **must not** contain \"abc\" in field `x` | NOT_MATCH | filter\\[x\\]=!abc | [https://api.gleif.org/api/v1/lei-records?filter[entity.legalAddress.country]=!GB](https://api.gleif.org/api/v1/lei-records?filter%5Bentity.legalAddress.country%5D=!GB) |\n| Results must contain any one of \"abc\", \"def\", etc. in field `x`. | IN | filter\\[x\\]=abc,def | [https://api.gleif.org/api/v1/lei-records?filter[entity.legalName]=facebook,twitter](https://api.gleif.org/api/v1/lei-records?filter%5Bentity.legalName%5D=facebook,twitter) |\n| Results **must not** contain any one of \"abc\", \"def\", etc. in field `x`. | NOT_IN | filter\\[x\\]=!abc,def | [https://api.gleif.org/api/v1/lei-records?filter[entity.legalName]=!facebook,twitter](https://api.gleif.org/api/v1/lei-records?filter%5Bentity.legalName%5D=!facebook,twitter) |\n| Results must be at least 123 and at most 456. Dates can be entered in the YYYYMMDD format. | IN_RANGE | filter\\[x\\]=123..456 filter\\[x\\]=20180101..20181001 | [https://api.gleif.org/api/v1/lei-records?filter[entity.expiration.date]=19900101..19950101](https://api.gleif.org/api/v1/lei-records?filter%5Bentity.expiration.date%5D=19900101..19950101) |\n| Results must be more than 123. Dates can be entered in the YYYYMMDD format. | GREATER_THAN | filter\\[x\\]=>123 | [https://api.gleif.org/api/v1/lei-records?filter[entity.expiration.date]=&gt;20190701](https://api.gleif.org/api/v1/lei-records?filter%5Bentity.expiration.date%5D=%3E20190701) |\n| Results must be **at least** 123. Dates can be entered in the YYYYMMDD format. | GREATER_THAN_OR_EQUAL | filter\\[x\\]=>=123 | [https://api.gleif.org/api/v1/lei-records?filter[entity.expiration.date]=&gt;=20190723](https://api.gleif.org/api/v1/lei-records?filter%5Bentity.expiration.date%5D=%3E=20190723) |\n| Results must be less than 123. Dates can be entered in the YYYYMMDD format. | LESS_THAN | filter\\[x\\]=<123 | [https://api.gleif.org/api/v1/lei-records?filter[entity.expiration.date]=&lt;19900101](https://api.gleif.org/api/v1/lei-records?filter%5Bentity.expiration.date%5D=%3C19900101) |\n| Results must be **at most** 123. Dates can be entered in the YYYYMMDD format. | LESS_THAN_OR_EQUAL | filter\\[x\\]=<=123 | [https://api.gleif.org/api/v1/lei-records?filter[entity.expiration.date]=&lt;=19850101](https://api.gleif.org/api/v1/lei-records?filter%5Bentity.expiration.date%5D=%3C=19850101) |\n\n### Display Search Results\n\n- Sort search results by country:\n    \n\n[https://api.gleif.org/api/v1/lei-records?sort=entity.legalAddress.country&amp;page[size]=1&amp;page[number]=1](https://api.gleif.org/api/v1/lei-records?sort=entity.legalAddress.country&page%5Bsize%5D=1&page%5Bnumber%5D=1)\n\n- Sort search results by legal name:\n    \n\n[https://api.gleif.org/api/v1/lei-records?sort=entity.legalName&amp;page[size]=1&amp;page[number]=1](https://api.gleif.org/api/v1/lei-records?sort=entity.legalName&page%5Bsize%5D=1&page%5Bnumber%5D=1)\n\n**Disclaimer**\n\nFuzzy matching of any given data field is based on statistical similarity and does not guarantee that the LEI belongs to the legal entity you are searching for.\n\n- You may wish to corroborate potential matches by comparing possibly relevant LEIs' reference data (names, addresses, business register number, etc.) with known attributes of your clients.\n    \n- Contact legal entities directly in case of doubt, to ensure that the correct LEI for that entity is used, and remind them to renew their LEI if it has lapsed.\n    \n- There are other tools on the market for using LEI data, though GLEIF does not recommend any specific third-party tool.\n    \n\n**Terms & Conditions**\n\nThere is no charge for the use of GLEIF’s LEI data.\n\nGLEIF does not enter into individual contractual relationships with specific users of the LEI data.\n\nRate limiting is currently set at 60 requests, per minute, per user, for all users.\n\nPlease refer instead to the LEI Data Terms of Use available here: [https://www.gleif.org/en/meta/lei-data-terms-of-use/](https://www.gleif.org/en/meta/lei-data-terms-of-use/)\n\n# Endpoint Listing","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","isPublicCollection":false,"owner":"7679680","collectionId":"45d06f3e-9abf-469b-a4f0-19350c820f0e","publishedId":"SVYrrxuU","public":true,"publicUrl":"https://documenter-api.postman.tech/view/7679680/SVYrrxuU","privateUrl":"https://go.postman.co/documentation/7679680-45d06f3e-9abf-469b-a4f0-19350c820f0e","customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"documentationLayout":"classic-double-column","customisation":null,"version":"8.10.1","publishDate":"2022-07-21T16:07:38.000Z","activeVersionTag":"latest","documentationTheme":"light","metaTags":{},"logos":{}},"statusCode":200},"environments":[],"user":{"authenticated":false,"permissions":{"publish":false}},"run":{"button":{"js":"https://run.pstmn.io/button.js","css":"https://run.pstmn.io/button.css"}},"web":"https://www.getpostman.com/","team":{"logo":"https://res.cloudinary.com/postman/image/upload/t_team_logo_pubdoc/v1/team/e91b688344b148775cefaeadf825c5a39dc4f5e0c4c704381468417aff5296d6","favicon":"https://res.cloudinary.com/postman/image/upload/v1658227858/team/teirudyl2kcen7quz5xk.ico"},"isEnvFetchError":false,"languages":"[{\"key\":\"csharp\",\"label\":\"C#\",\"variant\":\"HttpClient\"},{\"key\":\"csharp\",\"label\":\"C#\",\"variant\":\"RestSharp\"},{\"key\":\"curl\",\"label\":\"cURL\",\"variant\":\"cURL\"},{\"key\":\"dart\",\"label\":\"Dart\",\"variant\":\"http\"},{\"key\":\"go\",\"label\":\"Go\",\"variant\":\"Native\"},{\"key\":\"http\",\"label\":\"HTTP\",\"variant\":\"HTTP\"},{\"key\":\"java\",\"label\":\"Java\",\"variant\":\"OkHttp\"},{\"key\":\"java\",\"label\":\"Java\",\"variant\":\"Unirest\"},{\"key\":\"javascript\",\"label\":\"JavaScript\",\"variant\":\"Fetch\"},{\"key\":\"javascript\",\"label\":\"JavaScript\",\"variant\":\"jQuery\"},{\"key\":\"javascript\",\"label\":\"JavaScript\",\"variant\":\"XHR\"},{\"key\":\"c\",\"label\":\"C\",\"variant\":\"libcurl\"},{\"key\":\"nodejs\",\"label\":\"NodeJs\",\"variant\":\"Axios\"},{\"key\":\"nodejs\",\"label\":\"NodeJs\",\"variant\":\"Native\"},{\"key\":\"nodejs\",\"label\":\"NodeJs\",\"variant\":\"Request\"},{\"key\":\"nodejs\",\"label\":\"NodeJs\",\"variant\":\"Unirest\"},{\"key\":\"objective-c\",\"label\":\"Objective-C\",\"variant\":\"NSURLSession\"},{\"key\":\"ocaml\",\"label\":\"OCaml\",\"variant\":\"Cohttp\"},{\"key\":\"php\",\"label\":\"PHP\",\"variant\":\"cURL\"},{\"key\":\"php\",\"label\":\"PHP\",\"variant\":\"Guzzle\"},{\"key\":\"php\",\"label\":\"PHP\",\"variant\":\"HTTP_Request2\"},{\"key\":\"php\",\"label\":\"PHP\",\"variant\":\"pecl_http\"},{\"key\":\"powershell\",\"label\":\"PowerShell\",\"variant\":\"RestMethod\"},{\"key\":\"python\",\"label\":\"Python\",\"variant\":\"http.client\"},{\"key\":\"python\",\"label\":\"Python\",\"variant\":\"Requests\"},{\"key\":\"r\",\"label\":\"R\",\"variant\":\"httr\"},{\"key\":\"r\",\"label\":\"R\",\"variant\":\"RCurl\"},{\"key\":\"ruby\",\"label\":\"Ruby\",\"variant\":\"Net::HTTP\"},{\"key\":\"shell\",\"label\":\"Shell\",\"variant\":\"Httpie\"},{\"key\":\"shell\",\"label\":\"Shell\",\"variant\":\"wget\"},{\"key\":\"swift\",\"label\":\"Swift\",\"variant\":\"URLSession\"}]","languageSettings":[{"key":"csharp","label":"C#","variant":"HttpClient"},{"key":"csharp","label":"C#","variant":"RestSharp"},{"key":"curl","label":"cURL","variant":"cURL"},{"key":"dart","label":"Dart","variant":"http"},{"key":"go","label":"Go","variant":"Native"},{"key":"http","label":"HTTP","variant":"HTTP"},{"key":"java","label":"Java","variant":"OkHttp"},{"key":"java","label":"Java","variant":"Unirest"},{"key":"javascript","label":"JavaScript","variant":"Fetch"},{"key":"javascript","label":"JavaScript","variant":"jQuery"},{"key":"javascript","label":"JavaScript","variant":"XHR"},{"key":"c","label":"C","variant":"libcurl"},{"key":"nodejs","label":"NodeJs","variant":"Axios"},{"key":"nodejs","label":"NodeJs","variant":"Native"},{"key":"nodejs","label":"NodeJs","variant":"Request"},{"key":"nodejs","label":"NodeJs","variant":"Unirest"},{"key":"objective-c","label":"Objective-C","variant":"NSURLSession"},{"key":"ocaml","label":"OCaml","variant":"Cohttp"},{"key":"php","label":"PHP","variant":"cURL"},{"key":"php","label":"PHP","variant":"Guzzle"},{"key":"php","label":"PHP","variant":"HTTP_Request2"},{"key":"php","label":"PHP","variant":"pecl_http"},{"key":"powershell","label":"PowerShell","variant":"RestMethod"},{"key":"python","label":"Python","variant":"http.client"},{"key":"python","label":"Python","variant":"Requests"},{"key":"r","label":"R","variant":"httr"},{"key":"r","label":"R","variant":"RCurl"},{"key":"ruby","label":"Ruby","variant":"Net::HTTP"},{"key":"shell","label":"Shell","variant":"Httpie"},{"key":"shell","label":"Shell","variant":"wget"},{"key":"swift","label":"Swift","variant":"URLSession"}],"languageOptions":[{"label":"C# - HttpClient","value":"csharp - HttpClient - C#"},{"label":"C# - RestSharp","value":"csharp - RestSharp - C#"},{"label":"cURL - cURL","value":"curl - cURL - cURL"},{"label":"Dart - http","value":"dart - http - Dart"},{"label":"Go - Native","value":"go - Native - Go"},{"label":"HTTP - HTTP","value":"http - HTTP - HTTP"},{"label":"Java - OkHttp","value":"java - OkHttp - Java"},{"label":"Java - Unirest","value":"java - Unirest - Java"},{"label":"JavaScript - Fetch","value":"javascript - Fetch - JavaScript"},{"label":"JavaScript - jQuery","value":"javascript - jQuery - JavaScript"},{"label":"JavaScript - XHR","value":"javascript - XHR - JavaScript"},{"label":"C - libcurl","value":"c - libcurl - C"},{"label":"NodeJs - Axios","value":"nodejs - Axios - NodeJs"},{"label":"NodeJs - Native","value":"nodejs - Native - NodeJs"},{"label":"NodeJs - Request","value":"nodejs - Request - NodeJs"},{"label":"NodeJs - Unirest","value":"nodejs - Unirest - NodeJs"},{"label":"Objective-C - NSURLSession","value":"objective-c - NSURLSession - Objective-C"},{"label":"OCaml - Cohttp","value":"ocaml - Cohttp - OCaml"},{"label":"PHP - cURL","value":"php - cURL - PHP"},{"label":"PHP - Guzzle","value":"php - Guzzle - PHP"},{"label":"PHP - HTTP_Request2","value":"php - HTTP_Request2 - PHP"},{"label":"PHP - pecl_http","value":"php - pecl_http - PHP"},{"label":"PowerShell - RestMethod","value":"powershell - RestMethod - PowerShell"},{"label":"Python - http.client","value":"python - http.client - Python"},{"label":"Python - Requests","value":"python - Requests - Python"},{"label":"R - httr","value":"r - httr - R"},{"label":"R - RCurl","value":"r - RCurl - R"},{"label":"Ruby - Net::HTTP","value":"ruby - Net::HTTP - Ruby"},{"label":"Shell - Httpie","value":"shell - Httpie - Shell"},{"label":"Shell - wget","value":"shell - wget - Shell"},{"label":"Swift - URLSession","value":"swift - URLSession - Swift"}],"layoutOptions":[{"value":"classic-single-column","label":"Single Column"},{"value":"classic-double-column","label":"Double Column"}],"versionOptions":[],"environmentOptions":[{"value":"0","label":"No Environment"}],"canonicalUrl":"https://documenter.gw.postman.com/view/metadata/SVYrrxuU"}