Postman API
  1. API
Postman API
  • API
    • Get all APIs
      GET
    • Create API
      POST
    • Delete an API
      DELETE
    • Single API
      GET
    • Update an API
      PUT
    • Get All API Versions
      GET
    • Create API Version
      POST
    • Delete an API Version
      DELETE
    • Get an API Version
      GET
    • Update an API Version
      PUT
    • Get contract test relations
      GET
    • Get documentation relations
      GET
    • Get environment relations
      GET
    • Get integration test relations
      GET
    • Get monitor relations
      GET
    • Get linked relations
      GET
    • Create relations
      POST
    • Create Schema
      POST
    • Get Schema
      GET
    • Update Schema
      PUT
    • Create collection from schema
      POST
    • Get test suite relations
      GET
    • Sync relations with schema
      PUT
  • Collections
    • All Collections
      GET
    • Create Collection
      POST
    • Create a Fork
      POST
    • Merge a Fork
      POST
    • Delete Collection
      DELETE
    • Single Collection
      GET
    • Update Collection
      PUT
  • Environments
    • All Environments
    • Create Environment
    • Delete Environment
    • Single Environment
    • Update Environment
  • Import
    • Import exported data
    • Import external API specification
  • User
    • API Key Owner
  • Mocks
    • All Mocks
    • Create Mock
    • Delete Mock
    • Single Mock
    • Update Mock
    • Publish Mock
    • Unpublish Mock
  • Monitors
    • All Monitors
    • Create Monitor
    • Delete Monitor
    • Single Monitor
    • Update Monitor
    • Run a Monitor
  • Webhooks
    • Create Webhook
  • Workspaces
    • All workspaces
    • Create Workspace
    • Delete Workspace
    • Single workspace
    • Update Workspace
  1. API

Get an API Version

GET
/apis/{apiId}/versions/{apiVersionId}
APIAPI Version
This call fetches details about the specified API Version.
The response will contain a version object which would contain all the details of the API Version.
Requires API Key as X-Api-Key request header or apikey URL query parameter.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.getpostman.com/apis//versions/'
Response Response Example
{
  "version": {
    "api": "06e41ca3-8bea-4bc5-a726-70338b9f1940",
    "createdAt": "2019-07-21T16:31:15.000Z",
    "createdBy": "5665",
    "id": "03c17f53-7e2e-427d-b55a-006b244f29ff",
    "name": "0.1",
    "schema": [
      "3484cd1e-e00d-4c39-aea4-539663afe898"
    ],
    "updatedAt": "2019-07-21T16:31:15.000Z",
    "updatedBy": "5665"
  }
}

Request

Path Params
apiId
string 
required
apiVersionId
string 
required

Responses

🟢200Get an API version
application/json
Body
version
object 
optional
api
string 
optional
Example:
06e41ca3-8bea-4bc5-a726-70338b9f1940
createdAt
string 
optional
Example:
2019-07-21T16:31:15.000Z
createdBy
string 
optional
Example:
5665
id
string 
optional
Example:
03c17f53-7e2e-427d-b55a-006b244f29ff
name
string 
optional
Example:
0.1
schema
array[string]
optional
updatedAt
string 
optional
Example:
2019-07-21T16:31:15.000Z
updatedBy
string 
optional
Example:
5665
Previous
Delete an API Version
Next
Update an API Version
Built with